/* ^^^ Global ^^^ */
body {
    background: lightgray;
    padding: 0px;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

/* button */
.button {
    display: inline-block;
    border-radius: 4px;
    background-color: #1a2634;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 12px;
    padding: 10px;
    width: 100px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
  }
  
  .button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .button:hover span {
    padding-right: 25px;
  }
  
  .button:hover span:after {
    opacity: 1;
    right: 0;
  }

/* button2 */

.button2 {
	height: 38px;
	background: #1a2634;
	border: 0;
	padding-left: 20px;
	padding-right: 20px;
    color: #ffcc00;
}

/* current */
.current {
	opacity: 0.6;
  	cursor: not-allowed;
	color: #FFF;
}


/* Header */
header {
    display: flex;
    background: #ffcc00;
    min-height: 100px;
    padding: 10px;
    border-bottom: 4px black solid;
}

header .box-1 {
    /*border: 1px red solid;*/
    flex-basis: 25%;

}

header .box-1 img {
    width: 250px;
    margin-left: 13%;
}

header .box-2 {
    /*border: 1px green solid;*/
    flex-basis: 75%;
}

header u1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 3%;
    margin-right: 5%;
}

header li {
    padding: 0px 20px 0 20px;
}

header a {
    color: #fff;
}

/* Showcase */

.Showcase {
    border: 1px black solid;
    min-height: 400px;
    background: url(../IMG/TMF\ car.jpg) no-repeat 0 -500px;
    text-align: center;
    color: white;
}

.Showcase h1 {
    margin-top: 120px;
    font-size: 55px;
    margin-bottom: 10px;
}

.Showcase p{
    font-size: 20px;
}

/* Newsletter */

.Newsletter {
    display: flex;
    height: 80px;
    background: #ffcc00;
    /* border: 1px red solid; */
}

.Newsletter .box-1 {
    /* border: 1px green solid; */
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Newsletter .box-2 {
    /* border: 1px blue solid; */
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Newsletter input[type="email"] {
    padding: 4px;
    height: 25px;
    width: 250px;
}

.Newsletter button[type="submit"] {
    cursor: pointer;
}

/* Boxes */

.Boxes {
    /* border: 1px red solid; */
    background: none;
    display: flex;
    align-items: center; 
    justify-content: space-around;
    min-height: 400px;
}

/* Box */

.Box {
    width:300px;
    min-height:300px;
    text-align: center;
    padding:10px;
    /* border: 1px red solid; */
}

.Box img {
    width: 250px;
    height: auto;
}

.Box a {
    color: #ffcc00;
}

/* Footer */

footer {
    display: flex;
    background-color: black;
    padding: 30px 0px;
}

.navbox {
    flex: 5;
}

footer u1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style: none;
}

footer a {
    color: white;
}

footer li {
    padding: 10px;
    font-size: 10px;
}

footer .RIMG {
    float: left;
    margin-right: 10px;
}

footer p {
    display: flex;
    font-size: 10px;
    color: white;
    padding-right: 10px;
    justify-content: flex-end;
}

.socialbox {
    flex: 1;
}

.digitalclock {
    flex: 0,5;
    margin-left: 20px;
}
/* */